home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / kill-the-dragons.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2011-12-21  |  273 b   |  11 lines

  1. if(getBytesLoaded() / getBytesTotal() == 1)
  2. {
  3.    gotoAndPlay(2);
  4. }
  5. else
  6. {
  7.    _root.loaderstatus.text = String(getBytesLoaded()) + " / " + String(getBytesTotal());
  8.    _root.loaderbar.GotoAndStop(int(getBytesLoaded() / getBytesTotal() * 100));
  9.    gotoAndPlay(1);
  10. }
  11.